home *** CD-ROM | disk | FTP | other *** search
/ Workbench Add-On / Workbench Add-On - Volume 1.iso / BBS-Archive / Dev / gcc263-src.lha / gcc-2.6.3 / config / sh / xm-sh.h < prev   
C/C++ Source or Header  |  1993-11-14  |  1KB  |  45 lines

  1. /* Configuration for GNU C-compiler for Hitachi SH.
  2.    Copyright (C) 1993 Free Software Foundation, Inc.
  3. This file is part of GNU CC.
  4.  
  5. GNU CC is free software; you can redistribute it and/or modify
  6. it under the terms of the GNU General Public License as published by
  7. the Free Software Foundation; either version 2, or (at your option)
  8. any later version.
  9.  
  10. GNU CC is distributed in the hope that it will be useful,
  11. but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  13. GNU General Public License for more details.
  14.  
  15. You should have received a copy of the GNU General Public License
  16. along with GNU CC; see the file COPYING.  If not, write to
  17. the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.  */
  18.  
  19. /* #defines that need visibility everywhere.  */
  20. #define FALSE 0
  21. #define TRUE 1
  22.  
  23. /* This describes the machine the compiler is hosted on.  */
  24. #define HOST_BITS_PER_CHAR 8
  25. #define HOST_BITS_PER_SHORT 16
  26. #define HOST_BITS_PER_INT 32
  27. #define HOST_BITS_PER_LONG 32
  28.  
  29. /* If compiled with GNU C, use the built-in alloca.  */
  30. #ifdef __GNUC__
  31. #define alloca __builtin_alloca
  32. #endif
  33.  
  34. /* We have the vprintf function.  */
  35. #define HAVE_VPRINTF 1
  36.  
  37. /* target machine dependencies.
  38.    tm.h is a symbolic link to the actual target specific file.  */
  39. #include "tm.h"
  40.  
  41. /* Arguments to use with `exit'.  */
  42. #define SUCCESS_EXIT_CODE 0
  43. #define FATAL_EXIT_CODE 33
  44.  
  45.